Skip to content

Feat: 홈화면 QA 반영 [JDDEV-89] - #112

Merged
minnngo merged 1 commit into
developfrom
feature/JDDEV-89-home-qa-fix
Jul 28, 2026
Merged

Feat: 홈화면 QA 반영 [JDDEV-89]#112
minnngo merged 1 commit into
developfrom
feature/JDDEV-89-home-qa-fix

Conversation

@minnngo

@minnngo minnngo commented Jul 28, 2026

Copy link
Copy Markdown
Collaborator

🔗 관련 이슈

  • JDDEV-89

📝 개요

  • 홈 화면 및 LNB의 QA 이슈를 수정하고, ResultApplicationCard와 공통 드롭다운 컴포넌트의 디자인을 개선했습니다.
  • 작성 중인 모의지원 항목이 최신 생성 순서대로 표시되도록 정렬 로직을 추가했습니다.

⌨️ 작업 상세 내용

  • 작성 중인 모의지원 및 저장된 공고를 생성일 기준 최신순으로 정렬
  • 생성 시간이 같을 경우 모의지원 또는 공고 ID를 기준으로 정렬
  • 홈 최초 진입 시 LNB의 최근 항목이 접힌 상태로 표시되도록 변경
  • LNB 검색 결과가 없을 때 핑크색 임시 영역을 제거하고 안내 문구만 표시
  • ‘지원 현황 관리’ 클릭 시 공통 alertModal을 사용하도록 변경
  • 준비 중 안내 문구를 두 줄로 표시하고 줄바꿈 문자가 노출되지 않도록 수정
  • LNB 로그아웃 메뉴의 글래스·블러 효과를 제거하고 solid 배경 적용
  • 공통 드롭다운의 마지막 선택지 하단 구분선 제거
  • 선택지가 하나뿐인 드롭다운에서도 하단 구분선이 표시되지 않도록 수정
  • ResultApplicationCard의 점수 숫자와 ‘점’ 단위 정렬 보정
  • 점수 숫자에 text-text-neutral-title 시멘틱 컬러 적용
  • 케밥 메뉴의 재시도 관련 표현을 ‘재도전하기’로 통일

Summary by CodeRabbit

  • Improvements
    • Draft applications are now displayed in consistent, time-based order.
    • Recent items are collapsed by default for a cleaner navigation experience.
    • Updated dropdown, account menu, and empty-search layouts improve visual consistency.
    • Refined the coming-soon notice styling and presentation.
    • Improved application score display and retry interaction styling.
  • Bug Fixes
    • Removed the unnecessary bottom border from the final dropdown item.

@coderabbitai

coderabbitai Bot commented Jul 28, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

The PR adds deterministic timestamp-based ordering for home-page drafts and updates navigation defaults, modal presentation, sidebar dropdown styling, search-empty rendering, and result-card score presentation.

Changes

Draft ordering

Layer / File(s) Summary
Timestamped draft construction and sorting
jobdri/src/components/mockApply/home/types.ts, jobdri/src/app/page.tsx
DraftData now supports createdAtTime; mock applications and saved postings populate it, and combined drafts are sorted by timestamp with an ID tie-breaker.

Navigation and application presentation

Layer / File(s) Summary
Sidebar defaults and modal presentation
jobdri/src/components/common/lnb/Lnb.tsx
The recent section now starts closed, and the coming-soon modal uses updated overlay and alert properties.
Sidebar and dropdown styling
jobdri/src/components/common/lnb/LnbShared.tsx, jobdri/src/components/common/dropdown/DropDownMenu.tsx
Search-empty markup and account-menu backgrounds are simplified, and the last dropdown item omits its bottom border.
Result card retry and score presentation
jobdri/src/components/mockApply/home/ResultApplicationCard.tsx
Retry labeling is updated while behavior remains unchanged; score color and label alignment are restyled.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related PRs

Suggested labels: 🎨 UI

Suggested reviewers: yiyoonseo

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title matches the main theme of the PR: applying QA-related fixes to the home screen and related UI.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feature/JDDEV-89-home-qa-fix

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@jobdri/src/app/page.tsx`:
- Around line 141-143: Update the comparator in the sorting callback around
mockApplyId and jobPostingId to add a final deterministic tie-breaker when the
numeric comparison returns zero. Use the records’ namespaced id values, ordering
them consistently with the existing descending sort, such as comparing b.id
against a.id via localeCompare.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 1e8f9a88-5789-4425-a55e-697a58c807a3

📥 Commits

Reviewing files that changed from the base of the PR and between 707f99f and 0089620.

📒 Files selected for processing (6)
  • jobdri/src/app/page.tsx
  • jobdri/src/components/common/dropdown/DropDownMenu.tsx
  • jobdri/src/components/common/lnb/Lnb.tsx
  • jobdri/src/components/common/lnb/LnbShared.tsx
  • jobdri/src/components/mockApply/home/ResultApplicationCard.tsx
  • jobdri/src/components/mockApply/home/types.ts

Comment thread jobdri/src/app/page.tsx
Comment on lines +141 to +143
return (
(b.mockApplyId ?? b.jobPostingId) -
(a.mockApplyId ?? a.jobPostingId)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win

Add a final tie-breaker across ID namespaces.

mockApplyId and jobPostingId come from different sequences. If timestamps and numeric IDs match, this comparator returns 0, so the result is not fully deterministic. Add a final namespaced tie-breaker such as b.id.localeCompare(a.id).

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@jobdri/src/app/page.tsx` around lines 141 - 143, Update the comparator in the
sorting callback around mockApplyId and jobPostingId to add a final
deterministic tie-breaker when the numeric comparison returns zero. Use the
records’ namespaced id values, ordering them consistently with the existing
descending sort, such as comparing b.id against a.id via localeCompare.

@yiyoonseo yiyoonseo left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고해써요 🥹🩷🩷

@minnngo
minnngo merged commit e1dde71 into develop Jul 28, 2026
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants